home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
prog
/
pcl4p40.arj
/
CRC.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-03-09
|
1KB
|
61 lines
(*********************************************)
(* *)
(* This program is donated to the Public *)
(* Domain by MarshallSoft Computing, Inc. *)
(* It is provided as an example of the use *)
(* of the Personal Communications Library. *)
(* *)
(*********************************************)
{$DEFINE DEBUG}
unit crc;
interface
Function UpdateCRC(crc:Word;data:Byte):Word;
Function CalcTable(data,genpoly,accum:Word):Word;
Procedure InitCRC;
implementation
uses PCL4P, crt;
const POLY = $1021;
var CRCtable : array[0..255] of Word;
(* compute updated CRC *)
Function UpdateCRC(crc:Word;data:Byte):Word;
begin
UpDateCRC := (crc SHL 8) XOR ( CRCtable[ (crc SHR 8) XOR data] );
end;
(* calculate CRC table entry *)
Function CalcTable(data,genpoly,accum:Word):Word;
var
i : Word;
begin
data := data SHL 8;
for i := 8 downto 1 do
begin
if ( (data XOR accum) AND $8000 <> 0 )
then accum := (accum SHL 1) XOR genpoly
else accum := accum SHL 1;
data := data SHL 1;
end;
CalcTable := accum;
end;
(* initialize CRC table *)
Procedure InitCRC;
var
i : Integer;
begin
for i := 0 to 255 do CRCtable[i] := CalcTable(i,POLY,0);
end;
end.